home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19950528-19950726 / 000331_news@columbia.edu_Wed Jul 12 02:46:23 1995.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA25459
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Wed, 12 Jul 1995 11:25:28 -0400
  3. Received: by apakabar.cc.columbia.edu id AA21396
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Wed, 12 Jul 1995 11:25:21 -0400
  5. Path: news.columbia.edu!panix!news.mathworks.com!gatech!news.sprintlink.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  6. From: jrd@cc.usu.edu (Joe Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc
  8. Subject: Re: apc assign VS remote assign
  9. Message-Id: <1995Jul12.084623.55910@cc.usu.edu>
  10. Date: 12 Jul 95 08:46:23 MDT
  11. References: <3tvedk$mi0@ccnet.ccnet.com>
  12. Organization: Utah State University
  13. Lines: 53
  14. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  15.  
  16. In article <3tvedk$mi0@ccnet.ccnet.com>, davidm@ccnet.com (David MacMahon) writes:
  17. > I am using MS-DOS Kermit (v3.14 patch level 8) to dial into a Sun 
  18. > (running Solaris 2.3) where I run C-Kermit 5A(190).  On the remote side 
  19. > (i.e. the Sun) I "take" the following command file...
  20. > open write kermit.log
  21. > apc assign \\%a \\fsize(kermit.exe)
  22. > apc server
  23. > remote query user \%a
  24. > write file {Size of kermit.exe is \v(query)\10}
  25. > remote assign \%b \\fsize(kermit.exe)
  26. > remote query user \%b
  27. > write file {Size of kermit.exe is \v(query)\10}
  28. > finish
  29. > close write
  30. > It produces the following kermit.log file...
  31. > Size of kermit.exe is 230400
  32. > Size of kermit.exe is \fsize(kermit.exe)
  33.  
  34.     APC can execute commands via the MSK command line parser. It's
  35. a big deal to accomplish that.
  36.     REM QUERY cannot. It can find the contents of a table entry,
  37. such as the \%b item above, but it cannot execute the command parser.
  38. Functions \fblah() are recognized only by the command parser.
  39.  
  40. > The first line is the result from the apc assign and remote query.  This 
  41. > is the result I want to obtain.  The only problem is that if I want to do 
  42. > this for a number of files I have to go in and out of server mode a 
  43. > number of times or do all of my apc assign's beforehand.  Another 
  44. > problem is that I would like to have the PC run KERLITE.EXE which has no 
  45. > terminal emulator and therefore can't take apc commands at all!
  46. > Is there a way to get remote assign to behave like apc assign?  I have 
  47. > tried 'remote kermit assign \\%c \\fsize(kermit.exe)', but that doesn't 
  48.  
  49.     Nope. See above on the command parser (a very big deal actually).
  50.     Have you considered a DIR filespec  command? 
  51.     Joe D.
  52.  
  53. > seem to work at all.  In fact, I must misunderstand remote kermit 
  54. > altogether because I can't figure out what it does or how it's used.  I 
  55. > have the C-Kermit manual (but not the MS-DOS manual), which briefly 
  56. > explains the remote kermit command on page 146, but I still don't get 
  57. > it.  To top it off, when I put C-Kermit into server mode it doesn't 
  58. > appear to support 'remote kermit' at all!
  59. > Any and help on this matter greatly appreciated!
  60. > Dave
  61. > David MacMahon
  62. > davidm@ccnet.com